home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / vgagraph.zip / LOW.C < prev    next >
Text File  |  1993-03-23  |  264b  |  16 lines

  1. void move(unsigned int s,unsigned int o,unsigned int s1,unsigned int o1,unsigned int c)
  2. {
  3.        asm{
  4.        push ds
  5.        mov cx,c
  6.        mov di,o1
  7.        mov ax,s1
  8.        mov es,ax
  9.        mov si,o
  10.        mov ax,s
  11.        mov ds,ax
  12.        cld
  13.        rep movsb
  14.        pop ds
  15.        }
  16. }